home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
C/C++ Interactive Reference Guide
/
C-C++ Interactive Reference Guide.iso
/
c_ref
/
csource4
/
223_01
/
isgraph.c
< prev
next >
Wrap
Text File
|
1979-12-31
|
256b
|
8 lines
/*
** return 'true' if c is a graphic character
** (33-126)
*/
isgraph(c) int c; {
return (c>=33 && c<=126);
}